#ティック設定
このサンプルでは、さまざまな目盛り機能を使用して目盛りラベルを X 軸に表示する方法を制御する方法を示します。これらの機能には次のものが含まれます。
- 複数行のラベル
- ラベルのフィルタリング
- 目盛りの色を変更する
- X 軸の目盛りの配置を変更する
const config = { type: 'line', data: data, options: { responsive: true, plugins: { title: { display: true, text: 'Chart with Tick Configuration' } }, scales: { x: { ticks: { // For a category axis, the val is the index so the lookup via getLabelForValue is needed callback: function(val, index) { // Hide every 2nd tick label return index % 2 === 0 ? this.getLabelForValue(val) : ''; }, color: 'red', } } } }, };
#ドキュメント
- ライン
- オプション
- スクリプト可能なオプション
- ティックコンテキスト
- スクリプト可能なオプション
- データ構造 (
labels
) - 軸のスタイリング